projects
/
gtk4.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
eee3432
)
Sealed remaining (private) fields in GtkContainer.
author
Tim Janik
<timj@src.gnome.org>
Fri, 20 Jun 2008 11:04:18 +0000
(11:04 +0000)
committer
Tim Janik
<timj@src.gnome.org>
Fri, 20 Jun 2008 11:04:18 +0000
(11:04 +0000)
svn path=/trunk/; revision=20560
gtk/gtkcontainer.h
patch
|
blob
|
history
diff --git
a/gtk/gtkcontainer.h
b/gtk/gtkcontainer.h
index 0cc6a2db6d36a46cf06cc5e60c404b50dfd93fd2..e7c2ff38bc01f3ee3c515bfb6a70bb9cc8def706 100644
(file)
--- a/
gtk/gtkcontainer.h
+++ b/
gtk/gtkcontainer.h
@@
-62,10
+62,10
@@
struct _GtkContainer
guint GSEAL (border_width : 16);
/*< private >*/
- guint
need_resize : 1
;
- guint
resize_mode : 2
;
- guint
reallocate_redraws : 1
;
- guint
has_focus_chain : 1
;
+ guint
GSEAL (need_resize : 1)
;
+ guint
GSEAL (resize_mode : 2)
;
+ guint
GSEAL (reallocate_redraws : 1)
;
+ guint
GSEAL (has_focus_chain : 1)
;
};
struct _GtkContainerClass